home *** CD-ROM | disk | FTP | other *** search
- Path: news.voyager.net!news
- From: sence@ava.taby.se (Bjorn Osterman)
- Newsgroups: comp.lang.c++
- Subject: Re: easy c++ question
- Date: Mon, 08 Apr 1996 13:53:21 GMT
- Organization: The Gymnasium
- Message-ID: <31691a15.41310556@vixa.voyager.net>
- References: <316901DA.3138C677@ablecom.net>
- Reply-To: sence@ava.taby.se
- NNTP-Posting-Host: vixa.voyager.net
- X-Newsreader: Forte Agent .99d/32.182
-
- >//======================================================
- >class stack {
- > private:
- > int count; // number of items in the stack
- > int data[100]; // the items themselves
- > public:
- stack(); <-------- Do you have that line?
- > .
- > .
- > .
- >//======================================================
- >
-
-
- // bjorn@ava.taby.se
- // http://www.ava.taby.se/www/sence
-